home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / xach-effect.scm < prev   
Text File  |  2009-12-15  |  5KB  |  143 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; xach effect script
  5. ; Copyright (c) 1997 Adrian Likins
  6. ; aklikins@eos.ncsu.edu
  7. ;
  8. ; based on a idea by Xach Beane <xach@mint.net>
  9. ;
  10. ;
  11. ; This program is free software; you can redistribute it and/or modify
  12. ; it under the terms of the GNU General Public License as published by
  13. ; the Free Software Foundation; either version 2 of the License, or
  14. ; (at your option) any later version.
  15. ;
  16. ; This program is distributed in the hope that it will be useful,
  17. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. ; GNU General Public License for more details.
  20. ;
  21. ; You should have received a copy of the GNU General Public License
  22. ; along with this program; if not, write to the Free Software
  23. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  
  25.  
  26. (define (script-fu-xach-effect image
  27.                                drawable
  28.                                hl-offset-x
  29.                                hl-offset-y
  30.                                hl-color
  31.                                hl-opacity-comp
  32.                                ds-color
  33.                                ds-opacity
  34.                                ds-blur
  35.                                ds-offset-x
  36.                                ds-offset-y
  37.                                keep-selection)
  38.   (let* (
  39.         (ds-blur (max ds-blur 0))
  40.         (ds-opacity (min ds-opacity 100))
  41.         (ds-opacity (max ds-opacity 0))
  42.         (type (car (gimp-drawable-type-with-alpha drawable)))
  43.         (image-width (car (gimp-image-width image)))
  44.         (hl-opacity (list hl-opacity-comp hl-opacity-comp hl-opacity-comp))
  45.         (image-height (car (gimp-image-height image)))
  46.         (active-selection 0)
  47.         (from-selection 0)
  48.         (theLayer 0)
  49.         (hl-layer 0)
  50.         (shadow-layer 0)
  51.         (mask 0)
  52.         )
  53.  
  54.     (gimp-context-push)
  55.  
  56.     (gimp-image-undo-group-start image)
  57.     (gimp-layer-add-alpha drawable)
  58.  
  59.     (if (= (car (gimp-selection-is-empty image)) TRUE)
  60.         (begin
  61.           (gimp-selection-layer-alpha drawable)
  62.           (set! active-selection (car (gimp-selection-save image)))
  63.           (set! from-selection FALSE))
  64.         (begin
  65.           (set! from-selection TRUE)
  66.           (set! active-selection (car (gimp-selection-save image)))))
  67.  
  68.     (set! hl-layer (car (gimp-layer-new image image-width image-height type "Highlight" 100 NORMAL-MODE)))
  69.     (gimp-image-add-layer image hl-layer -1)
  70.  
  71.     (gimp-selection-none image)
  72.     (gimp-edit-clear hl-layer)
  73.     (gimp-selection-load active-selection)
  74.  
  75.     (gimp-context-set-background hl-color)
  76.     (gimp-edit-fill hl-layer BACKGROUND-FILL)
  77.     (gimp-selection-translate image hl-offset-x hl-offset-y)
  78.     (gimp-edit-fill hl-layer BACKGROUND-FILL)
  79.     (gimp-selection-none image)
  80.     (gimp-selection-load active-selection)
  81.  
  82.     (set! mask (car (gimp-layer-create-mask hl-layer ADD-WHITE-MASK)))
  83.     (gimp-layer-add-mask hl-layer mask)
  84.  
  85.     (gimp-context-set-background hl-opacity)
  86.     (gimp-edit-fill mask BACKGROUND-FILL)
  87.  
  88.     (set! shadow-layer (car (gimp-layer-new image
  89.                                             image-width
  90.                                             image-height
  91.                                             type
  92.                                             "Shadow"
  93.                                             ds-opacity
  94.                                             NORMAL-MODE)))
  95.     (gimp-image-add-layer image shadow-layer -1)
  96.     (gimp-selection-none image)
  97.     (gimp-edit-clear shadow-layer)
  98.     (gimp-selection-load active-selection)
  99.     (gimp-selection-translate image ds-offset-x ds-offset-y)
  100.     (gimp-context-set-background ds-color)
  101.     (gimp-edit-fill shadow-layer BACKGROUND-FILL)
  102.     (gimp-selection-none image)
  103.     (plug-in-gauss-rle RUN-NONINTERACTIVE image shadow-layer ds-blur TRUE TRUE)
  104.     (gimp-selection-load active-selection)
  105.     (gimp-edit-clear shadow-layer)
  106.     (gimp-image-lower-layer image shadow-layer)
  107.  
  108.     (if (= keep-selection FALSE)
  109.         (gimp-selection-none image))
  110.  
  111.     (gimp-image-set-active-layer image drawable)
  112.     (gimp-image-remove-channel image active-selection)
  113.     (gimp-image-undo-group-end image)
  114.     (gimp-displays-flush)
  115.  
  116.     (gimp-context-pop)
  117.   )
  118. )
  119.  
  120. (script-fu-register "script-fu-xach-effect"
  121.   _"_Xach-Effect..."
  122.   _"Add a subtle translucent 3D effect to the selected region (or alpha)"
  123.   "Adrian Likins <adrian@gimp.org>"
  124.   "Adrian Likins"
  125.   "9/28/97"
  126.   "RGB* GRAY*"
  127.   SF-IMAGE       "Image"                   0
  128.   SF-DRAWABLE    "Drawable"                0
  129.   SF-ADJUSTMENT _"Highlight X offset"      '(-1 -100 100 1 10 0 1)
  130.   SF-ADJUSTMENT _"Highlight Y offset"      '(-1 -100 100 1 10 0 1)
  131.   SF-COLOR      _"Highlight color"         "white"
  132.   SF-ADJUSTMENT _"Highlight opacity"       '(66 0 255 1 10 0 0)
  133.   SF-COLOR      _"Drop shadow color"       "black"
  134.   SF-ADJUSTMENT _"Drop shadow opacity"     '(100 0 100 1 10 0 0)
  135.   SF-ADJUSTMENT _"Drop shadow blur radius" '(12 0 255 1 10 0 1)
  136.   SF-ADJUSTMENT _"Drop shadow X offset"    '(5 0 255 1 10 0 1)
  137.   SF-ADJUSTMENT _"Drop shadow Y offset"    '(5 0 255 1 10 0 1)
  138.   SF-TOGGLE     _"Keep selection"          TRUE
  139. )
  140.  
  141. (script-fu-menu-register "script-fu-xach-effect"
  142.                          "<Image>/Filters/Light and Shadow/Shadow")
  143.